-
Notifications
You must be signed in to change notification settings - Fork 8.2k
intel_adsp: select log_backend_xtensa_sim for simulator #98449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
intel_adsp: select log_backend_xtensa_sim for simulator #98449
Conversation
| default y | ||
| endif | ||
|
|
||
| if SIMULATOR_XTENSA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does Kconfig have an else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so... I don't see an else in any of our Kconfig* files, and I don't see any use of else in the Kernel docs examples to tell me how. When I try guessing and putting this,
if SIMULATOR_XTENSA
config LOG_BACKEND_XTENSA_SIM
default y
else
config LOG_BACKEND_ADSP
default y
endif
the build can't parse the Kconfig.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow, interesting, ok, thanks for trying!
ADSP logging backend requires winstream console, which is turned off for simulator. Signed-off-by: Lauren Murphy <lauren.murphy@intel.com>
7ba7b3e to
7aaf3be
Compare
|



Workaround for logging test failures on intel_adsp_ace*/sim first observed in weekly build.
Fixes #98451